home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / A4ANDDOS.ZIP;1 / A4&DOS.TXT
Encoding:
Text File  |  1993-07-26  |  4.7 KB  |  112 lines

  1.                        Alpha FOUR and DOS
  2.  
  3. Introduction:
  4. Every piece of commercial software made to run under DOS has
  5. hardware and operating system configuration requirements in order
  6. to function as it was designed to. Alpha FOUR is no exception to
  7. this rule. This document is being provided to help you better
  8. understand what Alpha needs from your computer, and give you tips
  9. on how to provide Alpha FOUR with what it needs. This will ensure
  10. that you get the best performance from your hardware, and Alpha
  11. FOUR.
  12.  
  13. Requirements:
  14. As stated in the manual, the reqirements for proper (but not
  15. neccesarily optimal) performance of Alpha FOUR are as follows:
  16.      1) An IBM (or compatible) computer,
  17.      2) 640K RAM,
  18.      3) DOS 3.1 or higher,
  19.      4) A floppy drive,
  20.      5) A hard drive.
  21. These are minimum requirements, NOT what we recommend.  Although
  22. Alpha FOUR will function under the above conditions, it can work
  23. faster and more efficiently with more memory (2 megabytes or
  24. more), a fast processor (386/20 or above), and MS-DOS 5.0 or
  25. newer.  These are our recommendations, and chances are, (if you
  26. purchased your machine within the past 2 years) your system
  27. already has these.  The following instructions assume that your
  28. system meets our RECOMMENDED requirements.
  29.  
  30. Configuring your System:
  31. Below are examples of  CONFIG.SYS and AUTOEXEC.BAT files
  32. containing the lines we suggest using.  If you are not sure what
  33. a given line in your current file does, try remarking it out (by
  34. putting "REM " {without quotes} in front of the line). REM causes
  35. that line to be ignored by DOS.  This will allow you to see what's
  36. missing like something that worked before, that doesn't work now.
  37. If you don't notice any difference, leave the line "REMarked"out.
  38.  
  39. MAKE SURE YOU HAVE A BOOT DISK HANDY BEFORE MAKING ANY CHANGES!
  40. If you don't have a bootable floppy, make one now by putting a
  41. blank floppy in the A: drive and type format a:/s at the c: prompt.
  42. (If you're running MS-DOS 6.0, don't bother, you can hit F8)
  43. This bootable floppy will serve two purposes; First, it
  44. will let you into your system in case you make a mistake editing
  45. the startup files. Second, it will provide an easy way to boot
  46. with "Plain Vanilla DOS"... This is the flavor of DOS that has
  47. only DOS' defaults. (No config or autoexec, therefore no device
  48. drivers or TSR's; memory resident programs). Using EDIT.COM or
  49. your favorite ASCII editor, change your CONFIG.SYS and
  50. AUTOEXEC.BAT files to look like the file contents presented
  51. below, categorized by the amount of memory installed in your
  52. system.
  53.  
  54. For systems with 2 megs ram:
  55.      CONFIG.SYS:
  56.           DOS=HIGH,UMB
  57.           DEVICE=C:\DOS\HIMEM.SYS
  58.           DEVICEHIGH=C:\DOS\EMM386.EXE RAM 512
  59.           DEVICEHIGH=C:\DOS\SMARTDRV.SYS 256 (If you don't have
  60.           FILES=60                            Windows)
  61.           BUFFERS=20
  62.      
  63.      AUTOEXEC.BAT:
  64.           @ECHO OFF
  65.           LH C:\WINDOWS\SMARTDRV.EXE 256 (If you have Windows)
  66.           LH C:\DOS\SHARE.EXE
  67.           PROMPT $P$G
  68.           PATH C:\;C:\DOS
  69.  
  70.  
  71. For systems with 4 or more megs ram:
  72.      CONFIG.SYS:
  73.           DOS=HIGH,UMB
  74.           DEVICE=C:\DOS\HIMEM.SYS
  75.           DEVICEHIGH=C:\DOS\EMM386.EXE RAM 2048
  76.           DEVICEHIGH=C:\DOS\SMARTDRV.SYS (If you don't have
  77.           FILES=60                        Windows)
  78.           BUFFERS=20
  79.      
  80.      AUTOEXEC.BAT:
  81.           @ECHO OFF
  82.           LH C:\WINDOWS\SMARTDRV.EXE (If you have Windows)
  83.           LH C:\DOS\SHARE.EXE
  84.           PROMPT $P$G
  85.           PATH C:\;C:\DOS
  86.  
  87. Notes:
  88. You'll notice the optional smartdrv lines in the above examples;
  89. Use only one, or the other, depending upon what appears in 
  90. parenthesis at the end of the line.  DON'T INCLUDE WHAT'S IN
  91. THE PARENTHESIS IN YOUR FILES.  If you're running MS-DOS 6.0,
  92. and don't have Windows, you MUST use the SMARTDRV.EXE that comes
  93. with DOS 6. (because there is no smartdrv.sys)
  94. Simply adjust the path to it accordingly: (LH C:\DOS\SMARTDRV.EXE)
  95. Please note that we have set BUFFERS to 20, this is so that 
  96. the smartdrv cache can do it's job more efficiently.  
  97. If you're not using a disk cache, set BUFFERS to 32.
  98.   
  99. Additional Considerations:
  100. Most people will have other TSR's and device drivers loading in
  101. addition to those in the above examples.  If you do, make sure to
  102. load them into high ram, by using the command DEVICEHIGH (in the
  103. CONFIG.SYS file) or LOADHIGH (LH) (in the AUTOEXEC.BAT file).
  104. Doing so will give you more free conventional memory to work
  105. with.  There will be a limit as to how much will be able to load
  106. up there, but if DOS runs out of room in the high memory area, it
  107. will just quietly load your program into conventional instead.
  108.  
  109.  
  110.  
  111.  
  112.